home *** CD-ROM | disk | FTP | other *** search
/ SGI Varsity Update 1998 August / SGI Varsity Update 1998 August.iso / dist / dist6.5 / il_dev.idb / usr / include / il / ilAffineWarp.h.z / ilAffineWarp.h
C/C++ Source or Header  |  1998-07-29  |  3KB  |  101 lines

  1. #if 0 
  2.  
  3.     Copyright (c) 1991 SGI   All Rights Reserved
  4.     THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI
  5.     The copyright notice above does not evidence any
  6.     actual or intended publication of such source code,
  7.     and is an unpublished work by Silicon Graphics, Inc.
  8.     This material contains CONFIDENTIAL INFORMATION that
  9.     is the property of Silicon Graphics, Inc. Any use,
  10.     duplication or disclosure not specifically authorized
  11.     by Silicon Graphics is strictly prohibited.
  12.     
  13.     RESTRICTED RIGHTS LEGEND:
  14.     
  15.     Use, duplication or disclosure by the Government is
  16.     subject to restrictions as set forth in subdivision
  17.     (c)(1)(ii) of the Rights in Technical Data and Computer
  18.     Software clause at DFARS 52.227-7013, and/or in similar
  19.     or successor clauses in the FAR, DOD or NASA FAR
  20.     Supplement.  Unpublished- rights reserved under the
  21.     Copyright Laws of the United States.  Contractor is
  22.     SILICON GRAPHICS, INC., 2011 N. Shoreline Blvd.,
  23.     Mountain View, CA 94039-7311
  24.  
  25. #endif
  26. /*
  27.     ilAffineWarp implements a first degree polynomial warp in two dimensions
  28.     suitable for translations, rotations, and magnify/minify
  29. */
  30.  
  31. #ifndef _ilAffineWarp_h_
  32. #define _ilAffineWarp_h_
  33.  
  34. #include <il/ilWarp.h>
  35. #include <il/ilPolyDef.h>
  36.  
  37. class ilAffineWarp : public ilWarp {
  38. public:
  39.     iflClassListDeclare
  40.  
  41.     // external api: begin
  42.     ilAffineWarp(float xCon=0, float xX=1, float xY=0, 
  43.             float yCon=0, float yX=0, float yY=1)
  44.     { init(xCon, xX, xY, yCon, yX, yY); }
  45.  
  46.     // external api: name=ilAffineWarpCoeff
  47.     ilAffineWarp(const ilAffine2D& xCoeff, const ilAffine2D& yCoeff)
  48.     { init(xCoeff, yCoeff); }
  49.  
  50.     // external api: name=initCoeff
  51.     void init(const ilAffine2D& xCoeff, const ilAffine2D& yCoeff)
  52.         { xc = xCoeff; yc = yCoeff; warpChanged(); }
  53.  
  54.     void init(float xCon=0, float xX=1, float xY=0, 
  55.           float yCon=0, float yX=0, float yY=1)
  56.         { xc.init(xCon, xX, xY); yc.init(yCon, yX, yY); warpChanged(); }
  57.  
  58.     const ilAffine2D& getCoeffX() const { return xc; }
  59.     const ilAffine2D& getCoeffY() const { return yc; }
  60.  
  61.     // external api: end
  62.  
  63.     virtual ilWarp* copy() const;
  64.  
  65.     virtual void eval(float& x, float& y, float& z, 
  66.               float u, float v, float w) const;
  67.  
  68.     virtual void dx(float& x, float& y, float& z, 
  69.             float u, float v=0, float w=0) const;
  70.  
  71.     virtual void dy(float& x, float& y, float& z, 
  72.             float u, float v=0, float w=0) const;  
  73.  
  74.     virtual ilStatus invert(ilWarpQuality quality=ilWarpBest, 
  75.                 float ulo=0, float uhi=1, 
  76.                 float vlo=0, float vhi=1, 
  77.                 float wlo=0, float whi=0);
  78.  
  79.     virtual void identity();
  80.  
  81.     virtual ilStatus compose(const ilWarp& other, 
  82.                  ilWarpQuality quality=ilWarpBest);
  83.  
  84.     virtual ilStatus infer(ilTiePointList& tiePoints, 
  85.                ilWarpQuality quality=ilWarpBest);
  86.     
  87.     virtual ilStatus getBBox(iflXYZfloat& min, iflXYZfloat& max, 
  88.                  int su, int sv, int sw, 
  89.                  int nu, int nv, int nw) const;
  90.  
  91.     virtual int minimumNumberOfTies() const;
  92.  
  93.     virtual void evalVector(float upos, float vpos, float ustep, 
  94.                 iflXYfloat* addrs, int count, float wpos=0) const;
  95.  
  96. private:
  97.     struct ilAffine2D xc, yc;
  98. };
  99.  
  100. #endif
  101.